InviteUser
Represents the parameters required to invite a user via email, phone number, or user ID in the Rainbow platform. This class is used to construct customized invitations, such as specifying the language or adding a custom message.
Instances of InviteUser
should be created using the Builder class.
Types
Link copied to clipboard
data class Builder( email: String? = null, invitedPhoneNumber: String? = null, invitedUserId: String? = null, lang: String? = null, customMessage: String? = null)
Builder class for constructing InviteUser instances.